I hate making arrays of strings, so I created a string object and just had arrays of id's instead. It's inefficient, I know, but it's convenient. Used by the Sound Table.
*/
#import <objc/Object.h>
#define MAXSTRINGLENGTH 256
@interface StringTable:Object
{
char String [MAXSTRINGLENGTH]; // String length. Yes, I know...